home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / core / IEmbeddedFontRegistry.as < prev    next >
Text File  |  2009-02-12  |  440b  |  16 lines

  1. package mx.core
  2. {
  3.    public interface IEmbeddedFontRegistry
  4.    {
  5.        
  6.       
  7.       function getAssociatedModuleFactory(param1:EmbeddedFont, param2:IFlexModuleFactory) : IFlexModuleFactory;
  8.       
  9.       function registerFont(param1:EmbeddedFont, param2:IFlexModuleFactory) : void;
  10.       
  11.       function deregisterFont(param1:EmbeddedFont, param2:IFlexModuleFactory) : void;
  12.       
  13.       function getFonts() : Array;
  14.    }
  15. }
  16.